home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / demo / spinoza.zip / README.TXT < prev    next >
Text File  |  1995-03-29  |  5KB  |  131 lines

  1.  
  2.                                  Spinoza, Ltd.
  3.                         11333 Iowa Avenue, First Floor
  4.                           West Los Angeles, CA  90025
  5.                                  800-700-2217
  6.                                  310-231-9770
  7.                               310-231-9773 (fax)
  8.                             CompuServe: 71461,2021
  9.  
  10. How to Run the VBXtasy, Volume 1 version 1.1 Demonstration Programs
  11. ===================================================================
  12.  
  13. There are two sample programs that use VBXtasy, Volume 1 on this disk.  The
  14. first sample, Spinoza Calc (XTCCALC.EXE), is a scientific calculator that
  15. uses our Aluminum design set to provide a high-tech look and feel.  The
  16. second sample, Spinoza INI Editor (XTCINI.EXE), is a simple Windows .INI file
  17. editor that uses the Mahogany and Brass design set to yield a distinctive
  18. appearance. The Spinoza INI Editor also uses INI Edit, a VBX that provides
  19. full .INI file management functionality without requiring any direct Windows
  20. API calls (this VBX comes as part of our AppRemove/VB & INI Edit bundle).
  21.  
  22. You must have a copy of the Visual Basic runtime library, VBRUN300.DLL, in
  23. your Windows system directory in order to run these programs.  If you own
  24. Visual Basic 3.0 or any program written in Visual Basic 3.0, then this file
  25. should already be present.  All of the other files on which these programs
  26. depend (VBX files from our VBXtasy and INI Edit products, as well as
  27. CMDIALOG.VBX from Visual Basic) are included on the disk.
  28.  
  29. You can run these programs directly from this floppy disk, but for better
  30. performance you should create a directory on your hard disk and copy the
  31. files to that directory, then run the programs from there.
  32.  
  33. About VBXtasy, Volume 1
  34. =======================
  35.  
  36. VBXtasy will take you beyond the gray, pseudo-3D look with seven sets of
  37. designer controls.  Each professionally designed set includes a form
  38. background and a set of controls designed to match.
  39.  
  40. VBXtasy controls are plug-compatible with the standard Visual Basic controls,
  41. so there is nothing new to learn.
  42.  
  43. VBXtasy design sets include:
  44.  
  45. Mahogany and Brass   The mahogany and brass design set has a polished
  46.                      mahogany background with brass controls.  Text in the
  47.                      controls may optionally be displayed with an engraved
  48.                      look.
  49.  
  50. Brushed Aluminum     The brushed aluminum design set has a brushed aluminum
  51.                      background with shiny black plastic controls.
  52.  
  53. Mondo Rave           The mondo rave design set has a swirly purple
  54.                      "psychedelic" background with yellow rubber controls.
  55.  
  56. Human Resources      The human resources design set has a sepia background
  57.                      peppered with ghostly human images.  The controls float
  58.                      over the background, and appear to be made from clear
  59.                      Lucite.
  60.  
  61. Azul                 The azul design set has a background resembling a sky
  62.                      with high clouds.  The controls are a translucent, pale
  63.                      blue.
  64.  
  65. Safari               The safari design set has a sand-colored, nubby
  66.                      background.  The controls are khaki colored and starkly
  67.                      simple.
  68.  
  69. Chip                 The chip design set has a background resembling a
  70.                      printed circuit board.  The controls appear to be made
  71.                      from various computer components, including memory chips
  72.                      and status lights.
  73.  
  74. Features:
  75. *  Automatic runtime detection and support for VGA, Super VGA and 24-bit
  76.    (true color) systems
  77. *  Intelligent palette handling
  78. *  Support for all display resolutions
  79. *  Backgrounds composed of seamless tiles to give maximum effect in minimum
  80.    memory
  81. *  Royalty free
  82.  
  83. About AppRemove/VB & INI Edit
  84. =============================
  85.  
  86. AppRemove/VB and INI Edit bundled together are a "buff and polish" kit for
  87. your Visual Basic application.
  88.  
  89. AppRemove/VB analyzes the install disks created by the Application Setup
  90. Wizard and interactively creates an uninstall program.
  91.  
  92. AppRemove/VB Features:
  93. *  Intelligently deletes installed files
  94. *  Removes items added to Program Manager groups
  95. *  Provides descriptions of shared files that you can edit
  96. *  Optionally, asks the end-user whether to remove a shared file
  97. *  Explains to the end-user what the implications of their choices are
  98.  
  99. INI Edit Features:
  100. *    List, add, edit and delete sections and entries.
  101. *    Automatic type conversion
  102. *    View comma or space separated value as an array
  103. *    Win.ini update event support
  104. *    Royalty free
  105.  
  106. Using the INI Edit control is easy; all operations are performed by accessing
  107. properties.  To get the contents of the "Load" line in WIN.INI, for example,
  108. you would write the following:
  109.  
  110.    IniEdit1.FileName = "win.ini"
  111.    IniEdit1.Section = "windows"
  112.    IniEdit1.Entry = "load"
  113.    contents$ = IniEdit1.Text
  114.  
  115. INI Edit also offers the unique feature of viewing comma- or space-delimited
  116. entries as a list.  Many INI entries, including the aforementioned Load line,
  117. are formatted as lists.  If your Load line looked like this:
  118.  
  119.    Load = winfile.exe notepad.exe clock.exe
  120.  
  121. Then you could use the INI Edit List property as follows:
  122.  
  123.    ? IniEdit1.List(0)
  124.    winfile.exe
  125.  
  126.    ? IniEdit1.List(1)
  127.    notepad.exe
  128.  
  129.    ? IniEdit1.List(2)
  130.    clock.exe
  131.